home *** CD-ROM | disk | FTP | other *** search
Text File | 1991-04-03 | 785 b | 32 lines | [TEXT/PJMM] |
- { This file has been processed by The THINK Pascal Source Converter, v1.1. }
-
- {}
- {Created: Sunday, January 13, 1991 at 4:38 PM}
- { Dialogs.p}
- { Pascal Interface to the Macintosh Libraries}
- {}
- { Copyright Apple Computer, Inc. 1985-1990}
- { All rights reserved}
- {}
-
-
-
- { RMS 4/3/91 Modified to exclude declarations already in the THINK Pascal built-in interfaces }
-
-
-
- unit Dialogs;
- interface
- type
- ResumeProcPtr = ProcPtr; { PROCEDURE Resume; }
- SoundProcPtr = ProcPtr; { PROCEDURE DoSound; }
- ModalFilterProcPtr = ProcPtr; { FUNCTION Filter(theDialog: DialogPtr; VAR theEvent: EventRecord; VAR itemHit: INTEGER): BOOLEAN; }
-
- procedure ModalDialog (filterProc: ModalFilterProcPtr; var itemHit: INTEGER);
- inline
- $A991;
-
- implementation
- end.
-
-